home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / CACHEGC.DTML < prev    next >
Encoding:
Text File  |  1999-11-03  |  2.3 KB  |  85 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>Cache</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <dtml-var manage_tabs>
  8.  
  9.  
  10. <h2>Manual Cache Garbage Collection</h2><P>
  11.  
  12.  
  13. <table>
  14.  
  15. <tr><td>
  16. <strong>Full Sweep</strong><br>
  17. Make a single pass through the cache, removing any objects that are no
  18. longer referenced, and deactivating objects that have not been
  19. accessed in the number of seconds given in the input box to the right
  20. of this text.
  21. </td><td>
  22. <form action="<dtml-var URL1>/manage_full_sweep" method=GET>
  23. <input type="text" name="value:int" value="<dtml-var cache_age html_quote>" size=6><br>
  24. <input type="submit" value="Full Sweep">
  25. </form></td></tr>
  26.  
  27. <tr><td>
  28. <strong>Minimize</strong><br>
  29. Make multiple passes through the cache, removing any objects that are no
  30. longer referenced, and deactivating objects that have not been
  31. accessed in the number of seconds given in the input box to the right
  32. of this text.
  33. </td><td>
  34. <form action="<dtml-var URL1>/manage_minimize" method=GET>
  35. <input type="text" name="value:int" value="<dtml-var cache_age html_quote>" size=6><br>
  36. <input type="submit" value="Minimize">
  37. </form></td></tr>
  38.  
  39. </table
  40.  
  41.  
  42. <dtml-if cacheStatistics>
  43. <h3>Cache Statistics</h3>
  44. <table>
  45.  
  46. <dtml-in cacheStatistics>
  47. <tr><th align=left><dtml-var sequence-key></th>
  48.     <td><dtml-var sequence-item></td>
  49. </tr>
  50. </dtml-in>
  51.  
  52. </table>
  53. </dtml-if>
  54.  
  55. <dtml-if show_cache_detail>
  56.   <h4>Cache Details</h4><P>
  57.  
  58.   <table border><tr><th>Object Class</th><th>Count</th></tr>
  59.     <dtml-in cache_detail>
  60.       <tr><td><dtml-var sequence-key></td><td><dtml-var sequence-item></td></tr>
  61.     </dtml-in>
  62.   </table>
  63. </dtml-if>
  64.  
  65. <dtml-if show_cache_extreme_detail>
  66.   <h4>Objects in the cache</h4><P>
  67.  
  68.   <table border><tr><th>Object ID</th>
  69.              <th>Object Class</th>
  70.              <th>Reference Count</th>
  71.              <th>References</th>
  72.           </tr>
  73.     <dtml-in cache_extreme_detail mapping>
  74.       <tr><td><dtml-var oid></td>
  75.           <td><dtml-var klass></td>
  76.           <td><dtml-var rc></td>
  77.           <td><dtml-var references></td>
  78.       </tr>
  79.     </dtml-in>
  80.   </table>
  81. </dtml-if>
  82.  
  83. </BODY></HTML>
  84.  
  85.